Directory CreateDirectory method

Create a Directory in C#

Asp.net - 2012-07-19
>C# Directory Class > >The System.IO.Directory class in the .NET Framework class library provides static methods for creating, copying, moving, and deleting directories and subdirectories. Before you can use the Directory class, you must import the System.IO namespace. > >using System.IO; > >Create a Directory > >The Directory.CreateDirectory method creates a directory in the specified path with the specified Windows security. You can also create a directory on a remote compute. > >The followin